home *** CD-ROM | disk | FTP | other *** search
- //-------------------------------------------------------------------
-
- // MAIN.H
-
- // Copyright (c) 1995 by Golden Gate Software
-
- // Written by:
- // Richard D. Kligman
- // 3825 Baker Street
- // San Diego, CA 92117-5706
- // (619) 483-8496
- // FAX: (619) 483-4651
- // CompuServe: 75300,2530
-
- //-------------------------------------------------------------------
-
- #ifndef GGS_VB_MAIN_H
- #define GGS_VB_MAIN_H
-
- class MyClass
- {
- public:
- MyClass();
- ~MyClass();
-
- // Take two strings and make a third concatonated string
- void AddStrings(const char* strA, const char* strB, char* newStr, int len);
- };
-
-
- extern "C" {
- void _export PASCAL AddStrings(const char* strA, const char* strB, char* newStr, int len);
- }
-
-
- #endif
-